home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / var / lib / dpkg / info / debianutils.postrm < prev    next >
Text File  |  2008-06-10  |  310b  |  19 lines

  1. #! /bin/sh
  2.  
  3. set -e
  4.  
  5. case "$1" in
  6.     remove|disappear)
  7.     if which update-mime >/dev/null;
  8.     then
  9.             update-mime
  10.     fi
  11.         ;;
  12.     upgrade|failed-upgrade|purge|abort-install|abort-upgrade)
  13.         ;;
  14.     *)
  15.         echo "prerm called with unknown argument \`$1'" >&2
  16.         exit 1
  17.     ;;
  18. esac
  19.